home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000404_news@columbia.edu _Tue Mar 11 14:38:16 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA06581
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 11 Mar 1997 14:38:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA12940
  7.     for kermit.misc@watsun; Tue, 11 Mar 1997 14:38:15 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: SHOW SERVICES macro?
  12. Date: 11 Mar 1997 19:38:14 GMT
  13. Organization: Columbia University
  14. Lines: 37
  15. Message-ID: <5g4cb6$mdc$1@apakabar.cc.columbia.edu>
  16. References: <5g4brq$mte@nntp.Stanford.EDU>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6738
  19.  
  20. In article <5g4brq$mte@nntp.Stanford.EDU>,
  21. Stewart Levin <stew@sep.Stanford.EDU> wrote:
  22. : I've been patiently customizing my home C-kermit configuration
  23. : under Linux.  I created a cklocal.ini file defining the modem
  24. : information and a set of login macros to accompany the ckermit.ksd
  25. : services additions.  (BTW I had to add a CHECK NETWORK commmand...
  26. :
  27. CHECK NETWORK succeeds if network support compiled in, fails if not.
  28. It has nothing to do with whether a connection is active.
  29.  
  30. : within the COMMON: code block of ckermit.ini to permit the ACCESS
  31. : and related macros to be defined in the absence of an active
  32. : network configuration.)
  33. ???  I'm not sure I understand what you mean -- maybe you could send
  34. me email saying why you had to do this?
  35.  
  36. : I have two questions/requests:
  37. : 1. Does anyone already have a SHOW SERVICES equivalent macro
  38. :    to jog my memory about what services are defined in the
  39. :    ckermit.ksd file?
  40. It's already there:  LIST.
  41.  
  42. : 2. I'm thinking of building a modest X wrapper using
  43. :    the Stanford xtpanel scripting language.  Is it
  44. :    possible to invoke the "access" macro from the
  45. :    command line and leave the user connected to the
  46. :    resulting session?  I'm hoping to use xterm -e kermit -C ...
  47. :    for the purpose.
  48. That's one way to do it, something like:
  49.  
  50.   xterm -e kermit -C "access foo.bar.baz.com, if success connect, else exit"
  51.  
  52. - Frank